home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_08 / 9n08041b < prev    next >
Text File  |  1991-04-22  |  223b  |  8 lines

  1. /* BOX.H Prototypes for box and line
  2.    drawing functions C.1991 Dave Newman */
  3. #ifndef _BOX
  4. #define _BOX
  5. void draw_box(int,int,int,int,int);
  6. void draw_hline(int,int,int,int);
  7. void draw_vline(int,int,int,int);
  8. #endif